home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
UTILITY
/
XSPAWN.ARJ
/
XSPAWNL.C
< prev
next >
Wrap
Text File
|
1991-05-04
|
508b
|
18 lines
/*
* XSPAWN
* Version 1.33
* (C) Copyright 1990 Whitney Software, Inc.
* All Rights Reserved
*/
#include <stdio.h>
#include "xspawnp.h"
int xspawnl( modeflag, path, arglist )
int modeflag; /* execution mode for parent process */
char *path; /* file to be executed */
char *arglist; /* list of pointers to arguments */
{
return( xspawnve( modeflag, path, &arglist, NULL ));
}